Skip to content

UNLOCK_PARAM

Structure Definition

1
2
3
4
struct UNLOCK_PARAM {
    int lockID;                
    char resv[64];              
};
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct UNLOCK_PARAM
{
    public Int32 lockID;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.U1, SizeConst = 64)]
    public byte[] resv;
}

Function Description

Access control door opening parameters

Member Description

Member Type Remark
lockID int Door lock number, starting from 1. If there is no corresponding door lock, open all door locks.
resv char[64] Reserved field.
Error Code